home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PLayAdjOpts.cpp < prev    next >
C/C++ Source or Header  |  1996-10-14  |  928b  |  38 lines

  1. /*
  2.  *--- PLayAdjOpts.cpp --------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PLayAdjOpts.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PLayAdjOpts.h"
  12. #include "PRequestBuf.h"
  13. #include "PCommand.h"
  14.  
  15. PLayAdjOpts::PLayAdjOpts(
  16.                 long        mSnapToZone,
  17.                 PMBool        bResizeOK,
  18.                 PMBool        bIgnoreLocks,
  19.                 PMBool        bIgnoreGuides,
  20.                 PMBool        bMoveGuides,
  21.                 PMBool        bKeepGuidesAligned)
  22.  
  23. {
  24.     PRequestBuf request(14);
  25.     
  26.     request     <<    mSnapToZone
  27.                 <<    bResizeOK
  28.                 <<    bIgnoreLocks
  29.                 <<    bIgnoreGuides
  30.                 <<    bMoveGuides
  31.                 <<    bKeepGuidesAligned;
  32.  
  33.     PCommand command(pm_layadjopts, request);
  34. }
  35.  
  36.  
  37. // end of PLayAdjOpts.cpp
  38.